DicomObjects.NET.V8
DicomObjects Namespace / DicomImageCollection Class / Add Method / Add(IEnumerable<DicomDataSet>) Method

The DicomDataSetCollection to be added to the collection




In This Topic
    Add(IEnumerable<DicomDataSet>) Method
    In This Topic
    Syntax
    'Declaration
     
    Public Overloads Sub Add( _
       ByVal value As IEnumerable(Of DicomDataSet) _
    ) 
    'Usage
     
    Dim instance As DicomImageCollection
    Dim value As IEnumerable(Of DicomDataSet)
     
    instance.Add(value)
    public void Add( 
       IEnumerable<DicomDataSet> value
    )
    public:
    void Add( 
       IEnumerable<DicomDataSet^>^ value
    ) 

    Parameters

    value

    The DicomDataSetCollection to be added to the collection

    Remarks
    Similar to adding a DicomImage to DicomImageCollection, this method adds a collection of DicomDataSets to the end of a DicomImageCollection.
    Requirements

    Target Platforms: .NET CLR 4.0 or higher

    See Also